home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Tcl-Tk 8.0 / Pre-installed version / tcl8.0 / compat / dirent.h next >
Encoding:
C/C++ Source or Header  |  1997-08-15  |  550 b   |  24 lines  |  [TEXT/CWIE]

  1. /*
  2.  * dirent.h --
  3.  *
  4.  *    This file is a replacement for <dirent.h> in systems that
  5.  *    support the old BSD-style <sys/dir.h> with a "struct direct".
  6.  *
  7.  * Copyright (c) 1991 The Regents of the University of California.
  8.  * Copyright (c) 1994 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * SCCS: @(#) dirent.h 1.4 96/02/15 14:43:50
  14.  */
  15.  
  16. #ifndef _DIRENT
  17. #define _DIRENT
  18.  
  19. #include <sys/dir.h>
  20.  
  21. #define dirent direct
  22.  
  23. #endif /* _DIRENT */
  24.